Life cycle of page, execution, desktop, session, application
From Documentation
This documentation is for an older version of ZK. For the latest one, please click here.
From small scope to big:
- page
- A single page.
- execution[1]
- Processing a request from client side. It can cross pages.
- desktop
- All pages serving the same URL, for one browser tab.
- session
- From user visit the web to user leave or timeout. All following pages are related to same session.
- application
- From the application service start to stop. It is cross session, cross users.
Note that, if you press "F5" to refresh the web page, it's a different desktop, but the same session.
Note
- ↑
execution
in ZK is a wrapper ofrequest
in JSP